/* ========== 3. Hero Section ========== */
.hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    overflow: hidden;
    display: block;
}

.hover-img {
    transition: opacity 0.3s ease;
}

.title h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

/* ========== 4. Second Page ========== */
.second-page {
    width: 100%;
}

.concept {
    margin-top: 250px;
    display: flex;
    justify-content: space-around;
    padding: 25px 50px;
}

.con-left {
    width: 40%;
}

.con-right {
    width: 50%;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 1.6;
}

.con-img {
    margin-top: 120px;
    display: flex;
    justify-content: center;
}

.con-img img {
    width: 80%;
    height: 600px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.nav-prod {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
}

.left-prod {
    margin-left: 5%;
}

.right-prod {
    margin-right: 5%;
}

/* ========== 5. Products Section ========== */
.third-page {
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin-bottom: 160px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px;
}

.product {
    width: 400px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.product img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
    padding: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ========== 6. Fourth Page ========== */
.fourth-page {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 300px;
}

.left-col,
.right-col {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.left-big-box,
.right-big-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.left-big-box img,
.right-big-box img {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
}

/* ========== 7. Gift Page ========== */
.gift-page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    gap: 40px;
}

.left-gift {
    flex: 1;
}

.left-gift img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.right-gift {
    flex: 1;
    font-size: 20px;
    line-height: 1.6;
}

.right-gift button {
    margin-top: 15px;
    padding: 12px 24px;
    background-color: whitesmoke;
    color: #333;
    border: 1px solid #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.right-gift button:hover {
    background-color: #333;
    color: white;
    border: 1px solid #333;
}